home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / kismet.conf~ < prev    next >
Text File  |  2006-05-14  |  14KB  |  348 lines

  1. # Kismet config file
  2. # Most of the "static" configs have been moved to here -- the command line
  3. # config was getting way too crowded and cryptic.  We want functionality,
  4. # not continually reading --help!
  5.  
  6. # Version of Kismet config
  7. version=2005.08.R1
  8.  
  9. # Name of server (Purely for organizational purposes)
  10. servername=Kismet
  11.  
  12. # User to setid to (should be your normal user)
  13. suiduser=kismet
  14.  
  15. # Sources are defined as:
  16. # source=sourcetype,interface,name[,initialchannel]
  17. # Source types and required drivers are listed in the README under the
  18. # CAPTURE SOURCES section.
  19. # The initial channel is optional, if hopping is not enabled it can be used
  20. # to set the channel the interface listens on.
  21. # YOU MUST CHANGE THIS TO BE THE SOURCE YOU WANT TO USE
  22.  
  23. #source=cisco_wifix,eth1:wifi0,ciscosource
  24. #source=madwifi_g,ath0,Atheros
  25. #source=madwifing_g,ath0,Atheros
  26. #source=prism54g,eth1,PrismGT
  27. #source=hostap,wlan0,Prism2
  28. #source=wlanng,wlan0,Prism2
  29. #source=orinoco,eth1,HermesI
  30. #source=ipw2100,eth1,Centrino_b
  31. #source=ipw2200,eth1,Centrino_g
  32. #source=ipw3945,eth1,Centrino_ag
  33. #source=rt2500,ra0,Ralink_g
  34. #source=rt2500,rausb0,Ralink_g
  35. #source=bcm43xx,eth1,Broadcom
  36. #source=kismet_drone,192.168.2.252:3501,kismet_drone
  37.  
  38. # Comma-separated list of sources to enable.  This is only needed if you defined
  39. # multiple sources and only want to enable some of them.  By default, all defined
  40. # sources are enabled.
  41. # For example:
  42. # enablesources=prismsource,ciscosource
  43.  
  44. # Do we channelhop?
  45. channelhop=true
  46.  
  47. # How many channels per second do we hop?  (1-10)
  48. channelvelocity=5
  49.  
  50. # By setting the dwell time for channel hopping we override the channelvelocity
  51. # setting above and dwell on each channel for the given number of seconds.
  52. #channeldwell=10
  53.  
  54. # Do we split channels between cards on the same spectrum?  This means if 
  55. # multiple 802.11b capture sources are defined, they will be offset to cover
  56. # the most possible spectrum at a given time.  This also controls splitting
  57. # fine-tuned sourcechannels lines which cover multiple interfaces (see below)
  58. channelsplit=true
  59.  
  60. # Basic channel hopping control:
  61. # These define the channels the cards hop through for various frequency ranges
  62. # supported by Kismet.   More finegrain control is available via the 
  63. # "sourcechannels" configuration option.
  64. # Don't change the IEEE80211<x> identifiers or channel hopping won't work.
  65.  
  66. # Users outside the US might want to use this list:
  67. #defaultchannels=IEEE80211b:1,6,11,2,7,3,8,4,9,5,10
  68. defaultchannels=IEEE80211b:1,7,13,2,8,3,14,9,4,10,5,11,6,12
  69. defaultchannels=IEEE80211g:1,7,13,2,8,3,14,9,4,10,5,11,6,12
  70.  
  71. # 802.11a channels are non-overlapping so sequential is fine.  You may want to
  72. # adjust the list depending on the channels your card actually supports.
  73. # defaultchannels=IEEE80211a:36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140,149,153,157,161,184,188,192,196,200,204,208,212,216 
  74. defaultchannels=IEEE80211a:36,40,44,48,52,56,60,64
  75.  
  76. # Combo cards like Atheros use both 'a' and 'b/g' channels.  Of course, you
  77. # can also explicitly override a given source.  You can use the script 
  78. # extras/listchan.pl to extract all the channels your card supports.
  79. defaultchannels=IEEE80211ab:1,7,13,2,8,3,14,9,4,10,5,11,6,12,36,40,44,48,52,56,60,64
  80.  
  81. # Fine-tuning channel hopping control:
  82. # The sourcechannels option can be used to set the channel hopping for 
  83. # specific interfaces, and to control what interfaces share a list of 
  84. # channels for split hopping.  This can also be used to easily lock
  85. # one card on a single channel while hopping with other cards.
  86. # Any card without a sourcechannel definition will use the standard hopping
  87. # list.
  88. # sourcechannels=sourcename[,sourcename]:ch1,ch2,ch3,...chN
  89.  
  90. # ie, for us channels on the source 'prism2source' (same as normal channel
  91. # hopping behavior):
  92. # sourcechannels=prism2source:1,6,11,2,7,3,8,4,9,5,10
  93.  
  94. # Given two capture sources, "prism2a" and "prism2b", we want prism2a to stay
  95. # on channel 6 and prism2b to hop normally.  By not setting a sourcechannels 
  96. # line for prism2b, it will use the standard hopping.
  97. # sourcechannels=prism2a:6
  98.  
  99. # To assign the same custom hop channel to multiple sources, or to split the 
  100. # same custom hop channel over two sources (if splitchannels is true), list
  101. # them all on the same sourcechannels line:
  102. # sourcechannels=prism2a,prism2b,prism2c:1,6,11
  103.  
  104. # Port to serve GUI data
  105. tcpport=2501
  106. # People allowed to connect, comma seperated IP addresses or network/mask
  107. # blocks.  Netmasks can be expressed as dotted quad (/255.255.255.0) or as
  108. # numbers (/24)
  109. allowedhosts=127.0.0.1
  110. # Address to bind to.  Should be an address already configured already on
  111. # this host, reverts to INADDR_ANY if specified incorrectly.
  112. bindaddress=127.0.0.1
  113. # Maximum number of concurrent GUI's
  114. maxclients=5
  115.  
  116. # Do we have a GPS?
  117. gps=true
  118. # Host:port that GPSD is running on.  This can be localhost OR remote!
  119. gpshost=localhost:2947
  120. # Do we lock the mode?  This overrides coordinates of lock "0", which will
  121. # generate some bad information until you get a GPS lock, but it will 
  122. # fix problems with GPS units with broken NMEA that report lock 0
  123. gpsmodelock=false
  124.  
  125. # Packet filtering options:
  126. # filter_tracker - Packets filtered from the tracker are not processed or
  127. #                  recorded in any way.
  128. # filter_dump    - Packets filtered at the dump level are tracked, displayed,
  129. #                  and written to the csv/xml/network/etc files, but not 
  130. #                  recorded in the packet dump
  131. # filter_export  - Controls what packets influence the exported CSV, network,
  132. #                  xml, gps, etc files.
  133. # All filtering options take arguments containing the type of address and
  134. # addresses to be filtered.  Valid address types are 'ANY', 'BSSID',
  135. # 'SOURCE', and 'DEST'.  Filtering can be inverted by the use of '!' before
  136. # the address.  For example,
  137. # filter_tracker=ANY(!00:00:DE:AD:BE:EF)
  138. # has the same effect as the previous mac_filter config file option.
  139. # filter_tracker=...
  140. # filter_dump=...
  141. # filter_export=...
  142.  
  143. # Alerts to be reported and the throttling rates.
  144. # alert=name,throttle/unit,burst/unit
  145. # The throttle/unit describes the number of alerts of this type that are
  146. # sent per time unit.  Valid time units are second, minute, hour, and day.
  147. # Burst rates control the number of packets sent at a time
  148. # For example:
  149. # alert=FOO,10/min,5/sec
  150. # Would allow 5 alerts per second, and 10 alerts total per minute.
  151. # A throttle rate of 0 disables throttling of the alert.
  152. # See the README for a list of alert types.
  153. alert=NETSTUMBLER,10/min,1/sec
  154. alert=WELLENREITER,10/min,1/sec
  155. alert=LUCENTTEST,10/min,1/sec
  156. alert=DEAUTHFLOOD,10/min,2/sec
  157. alert=BCASTDISCON,10/min,2/sec
  158. alert=CHANCHANGE,5/min,1/sec
  159. alert=AIRJACKSSID,5/min,1/sec
  160. alert=PROBENOJOIN,10/min,1/sec
  161. alert=DISASSOCTRAFFIC,10/min,1/sec
  162. alert=NULLPROBERESP,10/min,1/sec
  163. alert=BSSTIMESTAMP,10/min,1/sec
  164.  
  165. # Known WEP keys to decrypt, bssid,hexkey.  This is only for networks where
  166. # the keys are already known, and it may impact throughput on slower hardware.
  167. # Multiple wepkey lines may be used for multiple BSSIDs.
  168. # wepkey=00:DE:AD:C0:DE:00,FEEDFACEDEADBEEF01020304050607080900
  169.  
  170. # Is transmission of the keys to the client allowed?  This may be a security
  171. # risk for some.  If you disable this, you will not be able to query keys from
  172. # a client.
  173. allowkeytransmit=true
  174.  
  175. # How often (in seconds) do we write all our data files (0 to disable)
  176. writeinterval=300
  177.  
  178. # Do we use sound?
  179. # Not to be confused with GUI sound parameter, this controls wether or not the
  180. # server itself will play sound.  Primarily for headless or automated systems.
  181. sound=false
  182. # Path to sound player
  183. soundplay=/usr/bin/play
  184. # Optional parameters to pass to the player
  185. # soundopts=--volume=.3
  186. # New network found
  187. sound_new=/usr/local/share/kismet/wav/new_network.wav
  188. # Wepped new network
  189. # sound_new_wep=${prefix}/com/kismet/wav/new_wep_network.wav
  190. # Network traffic sound
  191. sound_traffic=/usr/local/share/kismet/wav/traffic.wav
  192. # Network junk traffic found
  193. sound_junktraffic=/usr/local/share/kismet/wav/junk_traffic.wav
  194. # GPS lock aquired sound
  195. # sound_gpslock=/usr/local/share/kismet/wav/foo.wav
  196. # GPS lock lost sound
  197. # sound_gpslost=/usr/local/share/kismet/wav/bar.wav
  198. # Alert sound
  199. sound_alert=/usr/local/share/kismet/wav/alert.wav
  200.  
  201. # Does the server have speech? (Again, not to be confused with the GUI's speech)
  202. speech=false
  203. # Server's path to Festival
  204. festival=/usr/bin/festival
  205. # Are we using festival lite?  If so, set the above "festival" path to also
  206. # point to the "flite" binary
  207. flite=false
  208. # How do we speak?  Valid options:
  209. # speech    Normal speech
  210. # nato      NATO spellings (alpha, bravo, charlie)
  211. # spell     Spell the letters out (aye, bee, sea)
  212. speech_type=nato
  213. # speech_encrypted and speech_unencrypted - Speech templates
  214. # Similar to the logtemplate option, this lets you customize the speech output.
  215. # speech_encrypted is used for an encrypted network spoken string
  216. # speech_unencrypted is used for an unencrypted network spoken string
  217. #
  218. # %b is replaced by the BSSID (MAC) of the network
  219. # %s is replaced by the SSID (name) of the network
  220. # %c is replaced by the CHANNEL of the network
  221. # %r is replaced by the MAX RATE of the network
  222. speech_encrypted=New network detected, s.s.i.d. %s, channel %c, network encrypted.
  223. speech_unencrypted=New network detected, s.s.i.d. %s, channel %c, network open.
  224.  
  225. # Where do we get our manufacturer fingerprints from?  Assumed to be in the
  226. # default config directory if an absolute path is not given.
  227. ap_manuf=ap_manuf
  228. client_manuf=client_manuf
  229.  
  230. # Use metric measurements in the output?
  231. metric=false
  232.  
  233. # Do we write waypoints for gpsdrive to load?  Note:  This is NOT related to
  234. # recent versions of GPSDrive's native support of Kismet.
  235. waypoints=false
  236. # GPSMap waypoint file.  This WILL be truncated.
  237. waypointdata=%h/.gpsdrive/way_kismet.txt
  238.  
  239. # How many alerts do we backlog for new clients?  Only change this if you have
  240. # a -very- low memory system and need those extra bytes, or if you have a high
  241. # memory system and a huge number of alert conditions.
  242. alertbacklog=50
  243.  
  244. # File types to log, comma seperated
  245. # dump    - raw packet dump
  246. # network - plaintext detected networks
  247. # csv     - plaintext detected networks in CSV format
  248. # xml     - XML formatted network and cisco log
  249. # weak    - weak packets (in airsnort format)
  250. # cisco   - cisco equipment CDP broadcasts
  251. # gps     - gps coordinates
  252. logtypes=dump,network,csv,xml,weak,cisco,gps
  253.  
  254. # Do we track probe responses and merge probe networks into their owners?
  255. # This isn't always desireable, depending on the type of monitoring you're
  256. # trying to do.
  257. trackprobenets=true
  258.  
  259. # Do we log "noise" packets that we can't decipher?  I tend to not, since 
  260. # they don't have anything interesting at all in them.
  261. noiselog=false
  262.  
  263. # Do we log corrupt packets?  Corrupt packets have enough header information
  264. # to see what they are, but someting is wrong with them that prevents us from
  265. # completely dissecting them.  Logging these is usually not a bad idea.
  266. corruptlog=true
  267.  
  268. # Do we log beacon packets or do we filter them out of the dumpfile
  269. beaconlog=true
  270.  
  271. # Do we log PHY layer packets or do we filter them out of the dumpfile
  272. phylog=true
  273.  
  274. # Do we mangle packets if we can decrypt them or if they're fuzzy-detected
  275. mangledatalog=true
  276.  
  277. # Do we do "fuzzy" crypt detection?  (byte-based detection instead of 802.11
  278. # frame headers)
  279. # valid option: Comma seperated list of card types to perform fuzzy detection 
  280. #  on, or 'all'
  281. fuzzycrypt=wtapfile,wlanng,wlanng_legacy,wlanng_avs,hostap,wlanng_wext,ipw2200,ipw2915
  282.  
  283. # Do we use network-classifier fuzzy-crypt detection?  This means we expect 
  284. # packets that are associated with an encrypted network to be encrypted too, 
  285. # and we process them by the same fuzzy compare. 
  286. # This essentially replaces the fuzzycrypt per-source option.
  287. netfuzzycrypt=true
  288.  
  289. # What type of dump do we generate? 
  290. # valid option: "wiretap" 
  291. dumptype=wiretap
  292. # Do we limit the size of dump logs?  Sometimes ethereal can't handle big ones.
  293. # 0 = No limit
  294. # Anything else = Max number of packets to log to a single file before closing
  295. # and opening a new one.
  296. dumplimit=0
  297.  
  298. # Do we write data packets to a FIFO for an external data-IDS (such as Snort)?
  299. # See the docs before enabling this.
  300. #fifo=/tmp/kismet_dump
  301.  
  302. # Default log title
  303. logdefault=Kismet
  304.  
  305. # logtemplate - Filename logging template.
  306. # This is, at first glance, really nasty and ugly, but you'll hardly ever
  307. # have to touch it so don't complain too much.
  308. #
  309. # %n is replaced by the logging instance name
  310. # %d is replaced by the current date as Mon-DD-YYYY
  311. # %D is replaced by the current date as YYYYMMDD
  312. # %t is replaced by the starting log time
  313. # %i is replaced by the increment log in the case of multiple logs
  314. # %l is replaced by the log type (dump, status, crypt, etc)
  315. # %h is replaced by the home directory
  316. # ie, "netlogs/%n-%d-%i.dump" called with a logging name of "Pok" could expand
  317. # to something like "netlogs/Pok-Dec-20-01-1.dump" for the first instance and 
  318. # "netlogs/Pok-Dec-20-01-2.%l" for the second logfile generated.
  319. # %h/netlots/%n-%d-%i.dump could expand to
  320. # /home/foo/netlogs/Pok-Dec-20-01-2.dump
  321. #
  322. # Other possibilities:  Sorting by directory
  323. # logtemplate=%l/%n-%d-%i
  324. # Would expand to, for example,
  325. # dump/Pok-Dec-20-01-1
  326. # crypt/Pok-Dec-20-01-1
  327. # and so on.  The "dump", "crypt", etc, dirs must exist before kismet is run
  328. # in this case.
  329. logtemplate=/var/kismet/%n-%d-%i.%l
  330.  
  331. # Where do we store the pid file of the server?
  332. piddir=/var/run/
  333.  
  334. # Where state info, etc, is stored.  You shouldnt ever need to change this.
  335. # This is a directory.
  336. configdir=/var/kismet/
  337.  
  338. # cloaked SSID file.  You shouldn't ever need to change this.
  339. ssidmap=ssid_map
  340.  
  341. # Group map file.  You shouldn't ever need to change this.
  342. groupmap=group_map
  343.  
  344. # IP range map file.  You shouldn't ever need to change this.
  345. ipmap=ip_map
  346.  
  347.